Skip to content

patch: Release version 0.13.1#142

Merged
anjor merged 1 commit intomainfrom
release/v0.13.1
Feb 25, 2026
Merged

patch: Release version 0.13.1#142
anjor merged 1 commit intomainfrom
release/v0.13.1

Conversation

@anjor
Copy link
Owner

@anjor anjor commented Feb 25, 2026

Summary:\n- bump version from 0.13.0 to 0.13.1\n- update src/pltr/init.py version constant\n- refresh uv.lock\n- release tag v0.13.1 already pushed\n\nNotes:\n- main is protected, so this release commit is submitted via PR.

@claude
Copy link

claude bot commented Feb 25, 2026

PR Review: Release v0.13.1

This is a clean, minimal version bump PR. Here's my review:

Summary

The PR updates the version from 0.13.0 to 0.13.1 across three files:

  • pyproject.toml — project version metadata
  • src/pltr/__init__.py — runtime __version__ constant
  • uv.lock — lockfile entry for the package itself

Feedback

Code Quality: ✅
All three version references are consistently updated. No drift between pyproject.toml, __init__.py, and uv.lock.

Correctness: ✅
Patch version bump (0.13.0 → 0.13.1) follows semver conventions for a patch/fix release.

Potential concern — version duplication:
The version is maintained in two places (pyproject.toml and src/pltr/__init__.py). This is a known source of drift. Consider using importlib.metadata to derive __version__ from the installed package metadata rather than hardcoding it:

# src/pltr/__init__.py
from importlib.metadata import version, PackageNotFoundError

try:
    __version__ = version("pltr-cli")
except PackageNotFoundError:
    __version__ = "unknown"

This would mean future releases only need to bump pyproject.toml (and uv.lock follows automatically), eliminating the risk of the two getting out of sync. That said, this is a pre-existing design choice and not a blocker for this PR.

Security: ✅ No concerns.

Test coverage: N/A — version bump only, no logic changes.

Verdict

LGTM. The change is correct and consistent. The suggestion above is optional housekeeping for a future PR.

@anjor anjor merged commit f33612b into main Feb 25, 2026
17 of 18 checks passed
@anjor anjor deleted the release/v0.13.1 branch February 25, 2026 12:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant